home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 12
/
Cream of the Crop 12 (Part II)
/
Cream of the Crop 12 (Part II).iso
/
OS2
/
VD08BIN.ZIP
/
usr
/
include
/
db
/
DBNumField.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1996-02-13
|
327 b
|
24 lines
#ifndef _DBNUMFIELD_H_
#define _DBNUMFIELD_H_
#ifndef _DBFIELD_H_
#include "DBField.h"
#endif
@interface DBNumField : DBField
{
}
-(int) intValue;
-(float) floatValue;
-(double) doubleValue;
-setIntValue: (int) aValue;
-setFloatValue: (float) aValue;
-setDoubleValue: (double) aValue;
@end
#endif